home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource Library: Multimedia
/
Resource Library: Multimedia.iso
/
hypertxt
/
msdos
/
magic15c
/
magread.arc
/
FLOPPY.BAT
< prev
next >
Wrap
DOS Batch File
|
1988-10-27
|
2KB
|
57 lines
ECHO off
if x%1==x goto missing
ECHO -
ECHO This batch file will install MAGREAD on your two (2) floopies.
ECHO -
ECHO The MAGREAD.ARC disk should be in drive %1
ECHO -
ECHO The first of the two floppies should be in drive %2
ECHO This first floppy will be the MAGREAD system disk.
ECHO -
ECHO If you wish to abort, press CTRL-BREAK now... Otherwise...
PAUSE
%2
ECHO ..Copying Files From MAGREAD disk..
ECHO ...Creating MAGREAD system disk...
%1ARC X %1MAGREAD MAGREAD.* README. FLOPPY.INI
COPY FLOPPY.INI MAGREAD.INI
DEL FLOPPY.INI
ECHO ..Please switch floppies in drive %2 a this time..
ECHO ..This next disk will contain the HOWTO demo..
PAUSE
%1ARC X %1MAGREAD *.MGR *.MAG
ECHO ..Installation Complete..
GOTO finished
: missing
ECHO -
ECHO - The format for using FLOPPY.BAT is
ECHO -
ECHO - FLOPPY source.drive destination.drive
ECHO -
ECHO - an example would be...
ECHO -
ECHO - FLOPPY A: B:
ECHO -
ECHO - and in this case you would put the MAGREAD.ARC disk in drive A: and put the
ECHO - first of two (2) formated 360K floppy disks in drive B:
GOTO Done
: finished
ECHO -
ECHO -
ECHO To Read a Sample Hypertext File, Type:
ECHO -
ECHO MAGREAD HOWTO
ECHO -
ECHO Some helpful hints can be found in MAGREAD.DOC and README.
ECHO These files can be Displayed with the DOS TYPE command.
ECHO -
ECHO To see these instructions again use the DOS TYPE command on the file
ECHO FLOPPY.BAT. You may now delete the MAGREAD.ARC and .BAT files off
ECHO your original floppy.
ECHO THANK YOU.
: Done